home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
do1beta
/
picture.do
< prev
next >
Wrap
Text File
|
1991-07-26
|
323b
|
15 lines
#include "colors.do"
/*
demonstrate the use of a picture within a GET field
*/
w = currentWindow();
clearGets(w);
cls;
a = "test";
prompt = "Enter a value: ";
say(w,5,5,prompt,len(prompt),7);
f = new(Field,w,5,len(prompt)+5,"a",10,112);
setPicture(f,"!!!!!!!!!!");
read(w);
? "the value you entered was ",a;